home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / GCC-2.3.3r12 / Tests / structret.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-09  |  96 b   |  11 lines  |  [TEXT/MPS ]

  1. struct sss {
  2.     int slot[100];
  3. };
  4.  
  5. struct sss glob, foo ();
  6.  
  7. main()
  8. {
  9.     struct sss glob = foo();
  10. }
  11.